Commerce Stream Practicals

Std 12th IT Subject - Skill Oriented Practical (Commerce Stream)

SOP 2: Design Webpage Layout using HTML and CSS

SOP Question Image

Source Code: index.html

<!doctype html>
<html>
<head>
    <title>Tourist places</title>
    <style>
        aside {
            background-color: yellow;
            border: 2px black solid;
            font-size: 25px;
            display: inline;
            float: left;
            width: 49.6%;
            height: 250px;
        }

        section {
            background-color: pink;
            border: 2px black solid;
            text-align: left;
            font-size: 25px;
            float: right;
            width: 49.7%;
            height: 250px;
        }
    </style>
</head>
<body>
    <header>
        <h1 style="border:2px black solid;
        background-color:skyblue;
        text-align:center; padding:40px;
        font-size:50px; margin-bottom:0px;">Tourist Places</h1>
    </header>

    <aside>
        <h3>City</h3>
        <ol>
            <li>Pune</li>
            <li>Bangalore</li>
            <li>Hyderabad</li>
            <li>Delhi</li>
        </ol>
    </aside>

    <section>
        <h3>Tourist places in Pune</h3>
        <ul>
            <li>Shaniwar Wada</li>
            <li>Kelkar Museum</li>
            <li>Sinhgad Fort</li>
        </ul>
    </section>
</body>
</html>

Live Preview